home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / gfx / fract / fu1_61.lha / Formulas / Snow.Form < prev    next >
Text File  |  1994-05-07  |  184b  |  27 lines

  1. Snow
  2. {
  3.     {
  4.         x1=-3.0
  5.         x2= 3.0
  6.         y1=-3.0
  7.         y2= 3.0
  8.         bailout=4.0
  9.     }
  10.     {
  11.         z=pixel
  12.         c=pixel
  13.     }
  14.     {
  15.         z=z*z
  16.         z=z+c
  17.         t=pow(z,[3.1415,0.0])
  18.         z=t-z
  19.         w=abs(z)
  20.     }
  21.     {
  22.         w>bailout
  23.     }
  24.     {
  25.     }
  26. }
  27.